home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBSlider / htbslider.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.8 KB  |  63 lines

  1. // htbslider.h : main header file for the HTBSLIDER DLL
  2. //
  3.  
  4. #if !defined(AFX_HTBSLIDER_H__6847E125_5C95_11D3_A911_00104B9A4FD0__INCLUDED_)
  5. #define AFX_HTBSLIDER_H__6847E125_5C95_11D3_A911_00104B9A4FD0__INCLUDED_
  6.  
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10.  
  11. #ifndef __AFXWIN_H__
  12.     #error include 'stdafx.h' before including this file for PCH
  13. #endif
  14.  
  15. #define MAXTEXTLENGTH 80
  16.  
  17. #include "resource.h"        // main symbols
  18. #include "SliderDlg.h"
  19.  
  20. extern short g_DlgXCor;
  21. extern short g_DlgYCor;
  22. extern char g_Title[MAXTEXTLENGTH];
  23. extern char g_Description[MAXTEXTLENGTH];
  24. extern char g_LowText[MAXTEXTLENGTH];
  25. extern char g_HighText[MAXTEXTLENGTH];
  26. extern short g_TextWidth;
  27. extern long g_LowVal;
  28. extern long g_HighVal;
  29. extern short g_SliderWidth;
  30. extern long* g_pBasicVar;
  31. extern char g_Value[MAXTEXTLENGTH];
  32. extern SliderDlg* g_pSDlg;            // global pointer to button dialog used for setting focus and closing
  33.  
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CHtbsliderApp
  36. // See htbslider.cpp for the implementation of this class
  37. //
  38.  
  39. class CHtbsliderApp : public CWinApp
  40. {
  41. public:
  42.     CHtbsliderApp();
  43.  
  44. // Overrides
  45.     // ClassWizard generated virtual function overrides
  46.     //{{AFX_VIRTUAL(CHtbsliderApp)
  47.     //}}AFX_VIRTUAL
  48.  
  49.     //{{AFX_MSG(CHtbsliderApp)
  50.         // NOTE - the ClassWizard will add and remove member functions here.
  51.         //    DO NOT EDIT what you see in these blocks of generated code !
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.  
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58.  
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  61.  
  62. #endif // !defined(AFX_HTBSLIDER_H__6847E125_5C95_11D3_A911_00104B9A4FD0__INCLUDED_)
  63.